home *** CD-ROM | disk | FTP | other *** search
- on playFrame vPlace
- global gGoFrame
- if vPlace <> #done then
- set gGoFrame to the frame
- go(vPlace)
- else
- if not voidp(gGoFrame) then
- go(gGoFrame)
- else
- alert("ERROR: Issued a playframe #done without calling playframe first.")
- go(1)
- end if
- end if
- end
-
- on newPlay vPlace
- global gPlayFrame
- if vPlace <> #done then
- set gPlayFrame to the frame
- play frame vPlace
- else
- if not voidp(gPlayFrame) then
- play done
- go(gPlayFrame)
- else
- alert("ERROR: Issued a newPlay #done without calling newPlay first.")
- end if
- end if
- end
-